home *** CD-ROM | disk | FTP | other *** search
/ Loadstar 128 #20 / q20.d81 / t.q & a < prev    next >
Encoding:
Text File  |  1990-01-01  |  8.7 KB  |  180 lines

  1.  
  2.  
  3.                     T o t a l R e c a l l    Q  a n d  A
  4.  
  5. Question: This program isn't like most LOADSTAR programs.  How come?
  6.  
  7. Answer: I've developed my own style which, once you get used to it, makes
  8. perfect sense.  Whatever you need to do next is prompted for; you don't use
  9. big menus.  Give it a try.
  10.  
  11. Question: Should I copy TotalRecall to another disk?
  12.  
  13. Answer: Yes.  If you plan to use BatchMaker and MenuMaker, copy them to the
  14. disk, too.  LOADSTAR 128's Copy It feature will copy the necessary files,
  15. but in general, you need all of the files associated with the TotalRecall
  16. system except the "t." files.   Those you should print out for reference.
  17.  
  18. Question:  Do I have to use BatchMaker to create these files?
  19.  
  20. Answer:  No.  BatchMaker attempts to remove the thinking from the file
  21. creation process.  If you are comfortable with word processing, instead of
  22. using BatchMaker you can use any SEQuential file editor or word processor
  23. that will dump files to disk in a SEQuential format.  You should set left
  24. margins to 0, top and bottom margins to 0.  You should convert colons to
  25. chr$(219) and commas to chr$(221).  I use THE WRITE STUFF, and this is very
  26. easily done using redefinable characters.  BatchMaker does this
  27. automatically.  An advantage of using a word processor is that you can
  28. include the "file" option in daily or info files.  It is probably also
  29. faster once you know how to do it.  I do all of mine with a word processor.
  30.  
  31. Question:  What about "edstar.seq"?
  32.  
  33. Answer:  "eds.seq", on Side One, is a line editor that runs in the C-64
  34. mode, 40 columns.  Use it if you don't have a word processor like THE WRITE
  35. STUFF.  It won't allow you to enter the codes you need for colons and
  36. commas, so your only recourse is to not use colons or commas on your
  37. calendar.  To use "edstar.seq", load and run it, then at the "filename"
  38. prompt, enter any garbage sequence and press RETURN.  The drive will blink,
  39. but don't worry.  You can turn the drive off and on if you want the blinking
  40. to stop.  Then enter your file data and press CTRL-S when ready to save.
  41. Enter the filename and press RETURN.
  42.  
  43. Question:  Am I limited to 8 lines of text in a calendar block?
  44.  
  45. Answer:  This is a function of your printer really.  If you have a wide
  46. carriage printer, you can get up to 18 lines in a block.  If you have an 80
  47. column printer, 8 lines is the smallest block.  They may get a little
  48. larger, depending on how many days are in the month, and what day the month
  49. starts and ends on.  There are 28 blocks in February 1998, because it is 28
  50. days long, and starts on Sunday and ends on Saturday.  February of 1992 has
  51. 35 blocks, because it starts on Saturday and ends on Saturday.  It thus
  52. includes parts of 5 different weeks.  The more blocks you have, the fewer
  53. lines there are available in each block.
  54.  
  55. Question:  Can Master Batch files use graphics and dates?
  56.  
  57. Answer:  A qualified yes.  If you create them with a SEQuential file editor
  58. or word processor, they can, but if you use BatchMaker, they cannot.  This
  59. was just to simplify coding and operation for users.
  60.  
  61. Question:  Can Informational files be grouped together in a single file?
  62.  
  63. Answer:  No!  Informational files are pretty much one calendar block
  64. affairs.  If they get too big to fit in a block, the remaining information
  65. in the file is read, and ignored.  However, this wastes a little time.  You
  66. will get "Block Full" messages from TotalRecall.  That is why BatchMaker
  67. does what it can to limit how much you enter.  Since this is a batch type
  68. operation, and multiple files can be accessed, there is no good way to
  69. prevent you from having too much information for a block, though.
  70.  
  71. Question:  Can I use more than one graphic in a block?
  72.  
  73. Answer:  A qualified yes!  They cannot be side by side, but instead, for
  74. wide carriage printers, you can have a graphic at the top and bottom of the
  75. calendar block.  It does involve a bit of trickery, and BatchMaker won't
  76. allow you to do it.  You must use a word processor or SEQuential file editor
  77. to do this.  Each graphic block is introduced in a file by the word
  78. "graphic" and closed by the phrase "graphic end".  For the second graphic in
  79. a file block, instead of using "graphic", use the word "graphic+".  For
  80. example:
  81.  
  82.  graphic
  83.  money bag
  84.  00
  85.  graphic end
  86.  graphic+
  87.  antique car
  88.  00
  89.  graphic end
  90.  
  91. would print 2 graphics in the same block.  Money Bag would be in the top
  92. half of the block and Antique Car would be in the bottom (if there was still
  93. room in that block.)
  94.  
  95. Question:  How many graphics can I have on a calendar?
  96.  
  97. Answer:  You can have up to 19 unique 3 block graphics on a calendar and up
  98. to 35 2 block graphics on a calendar.  You can have combinations of the two
  99. also.  Notice I said "unique".  You drastically skew that number if you use
  100. the same graphic more than once.  If you do that, you could conceivably have
  101. one or two graphics in every block, depending on calendar size.  For
  102. example, if you have five birthdays in a month, and used a graphic called
  103. "cake" or "present" for all of them, the buffer space taken by each one is
  104. considerably less than if you used a unique graphic for each one, and the
  105. technique is faster too.  Practically, you have access to more than you will
  106. probably ever use.  Most people don't have wide carriage printers, meaning
  107. most people are limited to probably 35 or 42 (one in each block) for months
  108. with that many blocks.
  109.  
  110. Question:  Do my date entries have to be in order?
  111.  
  112. Answer:  No!  When editing a block for a month, enter them as you remember
  113. them.  They will be in the correct block when TotalRecall accesses them.
  114. The months have to be in order.  If you use BatchMaker, this is not a
  115. problem.  It can only really come up if you use a word processor or
  116. SEQuential file editor to create your files.
  117.  
  118. Question:  What happens if my message is too wide for the calendar block?
  119.  
  120. Answer:  If you manage to get one in that is too long, the extra characters
  121. are simply truncated.  That is the worst that can happen.
  122.  
  123. Question:  How can I add information to an existing file?
  124.  
  125. Answer:  Use the "Merge" option in BatchMaker (or a word processor).  In
  126. BatchMaker, you will get a directory before you enter the file name.  In
  127. this mode, you MUST enter a file exactly as it appears on the directory.
  128. You will not be allowed anywhere in BatchMaker to use pattern matching (*
  129. and ?) characters in filenames.  The type of file, info or daily, will be
  130. automatically determined.  From there, entry follows the procedures outlined
  131. in the Read It for BatchMaker.  You can use the merge function to add more
  132. months to a file, before or after the starting month in a file.  For
  133. example, if you create a file for February, you can later merge a file for
  134. January or March to it, or just add more information for February.  When you
  135. merge files, you will be asked for a pattern before being asked for a
  136. filename.  This just limits what you are shown in the way of a directory.
  137. When you choose a file to merge with, it must match exactly the name on the
  138. disk.
  139.  
  140. Let's merge into the file Friday we created in our demonstration.  From the
  141. "Merge..." file, type "y" for "yes" and press RETURN. At the next screen,
  142. for "Pattern", enter "F*" and press RETURN.  You will see in the directory
  143. the file Friday, which we just created.  So, for the filename to merge into,
  144. type Friday and press RETURN.  It must be typed EXACTLY as it appears in the
  145. directory.  The message you will see says:
  146.  
  147.    Friday will be recreated/expanded on drive 8
  148.  
  149. (or whatever your destination drive is).
  150.  
  151. Next you will have the choices of "Printer" and "Exit".  Enter "p" to toggle
  152. the printer "On", and then, press "e" to "Exit".  Those are the only choices
  153. at THIS menu, and the only exit is by pressing 'e'.
  154.  
  155. Next, you will see "Removing Friday from drive <source #>", then "Beginning
  156. Merge...", and then "Processing Info/start load Informational".  The wording
  157. on these lines may be a little different for you.  They are all only
  158. informational!
  159.  
  160. Now we are back at the familiar "Text", "Graphic", "Exit" screen.  Press "t"
  161. for "Text".  We are going to add, at respective prompts, 1 line, 3
  162. characters high, 2 characters wide.  When asked for the text for line 1,
  163. type in "The Weekend", and press RETURN.  Verify that it is correct, then
  164. press "e" at the "Text", "Graphic", "Exit" screen.  Verify this choice, and
  165. you will see 'Completing Merge' on screen.  Shortly after that you will
  166. again see the 'Merge...' screen.  Check your printer to see that the new
  167. line is added to the Friday file.  That is the procedure for merging into an
  168. existing file using BatchMaker.
  169.  
  170. Question:  Will there be updates?
  171.  
  172. Answer:  MAYBE for TotalRecall.  I don't think I'll update BatchMaker,
  173. unless someone comes up with an idea I find really intriguing (or someone
  174. does the update).  They are pretty generic in function, and that is
  175. intentional.
  176.  
  177. egb
  178.  
  179.                             **** RETURN - Menu ****
  180.